【例子介绍】1.1 spring boot基础学习资料
spring boot 增删改查
【相关图片】
【源码结构】
.
├── 1.1 spring boot基础
│ ├── 1.1.2 springboot快速入门
│ │ ├── springboot_hello
│ │ │ ├── HELP.md
│ │ │ ├── mvnw
│ │ │ ├── mvnw.cmd
│ │ │ ├── pom.xml
│ │ │ └── src
│ │ │ ├── main
│ │ │ │ ├── java
│ │ │ │ │ └── com
│ │ │ │ │ └── study
│ │ │ │ │ └── springboot_hello
│ │ │ │ │ ├── SpringbootHelloApplication.java
│ │ │ │ │ └── controller
│ │ │ │ │ └── MainController.java
│ │ │ │ ├── main.iml
│ │ │ │ └── resources
│ │ │ │ ├── application.properties
│ │ │ │ ├── static
│ │ │ │ └── templates
│ │ │ └── test
│ │ │ ├── java
│ │ │ │ └── com
│ │ │ │ └── study
│ │ │ │ └── springboot_hello
│ │ │ │ └── SpringbootHelloApplicationTests.java
│ │ │ └── test.iml
│ │ ├── springboot_hello.zip
│ │ └── springmvc_hello.zip
│ ├── 1.1.3 springboot原理分析
│ │ ├── SpringbootApplication注解剖析.jpg
│ │ ├── SpringbootApplication注解剖析.png
│ │ └── SpringbootApplication注解剖析.pos
│ ├── 1.1.4 springboot配置
│ │ ├── springboot02
│ │ │ ├── HELP.md
│ │ │ ├── hs_err_pid35076.log
│ │ │ ├── hs_err_pid564.log
│ │ │ ├── mvnw
│ │ │ ├── mvnw.cmd
│ │ │ ├── pom.xml
│ │ │ ├── replay_pid35076.log
│ │ │ ├── replay_pid564.log
│ │ │ ├── springboot02.iml
│ │ │ └── src
│ │ │ ├── main
│ │ │ │ ├── java
│ │ │ │ │ └── com
│ │ │ │ │ └── study
│ │ │ │ │ └── springboot02
│ │ │ │ │ ├── Springboot02Application.java
│ │ │ │ │ ├── bean
│ │ │ │ │ │ ├── Friend.java
│ │ │ │ │ │ └── Person.java
│ │ │ │ │ └── controller
│ │ │ │ │ └── MainController.java
│ │ │ │ └── resources
│ │ │ │ ├── application.properties
│ │ │ │ ├── application.yml
│ │ │ │ ├── person.properties
│ │ │ │ ├── static
│ │ │ │ └── templates
│ │ │ └── test
│ │ │ └── java
│ │ │ └── com
│ │ │ └── study
│ │ │ └── springboot02
│ │ │ └── Springboot02ApplicationTests.java
│ │ └── springboot02.zip
│ ├── 1.1.5 springboot进行web开发
│ │ ├── managersystemdemo
│ │ │ ├── META-INF
│ │ │ │ └── persistence.xml
│ │ │ ├── managersystemdemo.iml
│ │ │ ├── mvnw
│ │ │ ├── mvnw.cmd
│ │ │ ├── pom.xml
│ │ │ ├── src
│ │ │ │ ├── main
│ │ │ │ │ ├── java
│ │ │ │ │ │ └── com
│ │ │ │ │ │ └── hckj
│ │ │ │ │ │ └── managersystemdemo
│ │ │ │ │ │ ├── ManagersystemdemoApplication.java
│ │ │ │ │ │ ├── config
│ │ │ │ │ │ │ └── WebMvcConfig.java
│ │ │ │ │ │ ├── controller
│ │ │ │ │ │ │ └── LoginController.java
│ │ │ │ │ │ ├── entity
│ │ │ │ │ │ │ └── Users.java
│ │ │ │ │ │ ├── intercept
│ │ │ │ │ │ │ └── LoginHandlerIntercept.java
│ │ │ │ │ │ ├── repository
│ │ │ │ │ │ │ ├── UserRepositoryImp.java
│ │ │ │ │ │ │ └── UsersRepository.java
│ │ │ │ │ │ └── service
│ │ │ │ │ └── resources
│ │ │ │ │ ├── application.properties
│ │ │ │ │ ├── rebel-remote.xml
│ │ │ │ │ ├── rebel.xml
│ │ │ │ │ ├── static
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ ├── img
│ │ │ │ │ │ └── js
│ │ │ │ │ └── templates
│ │ │ │ │ ├── list.html
│ │ │ │ │ └── login.html
│ │ │ │ └── test
│ │ │ │ └── java
│ │ │ │ └── com
│ │ │ │ └── hckj
│ │ │ │ └── managersystemdemo
│ │ │ │ └── ManagersystemdemoApplicationTests.java
│ │ │ └── target
│ │ │ ├── classes
│ │ │ │ ├── application.properties
│ │ │ │ ├── com
│ │ │ │ │ └── hckj
│ │ │ │ │ └── managersystemdemo
│ │ │ │ │ ├── ManagersystemdemoApplication.class
│ │ │ │ │ ├── config
│ │ │ │ │ │ └── WebMvcConfig.class
│ │ │ │ │ ├── controller
│ │ │ │ │ │ └── LoginController.class
│ │ │ │ │ ├── entity
│ │ │ │ │ │ └── Users.class
│ │ │ │ │ ├── intercept
│ │ │ │ │ │ └── LoginHandlerIntercept.class
│ │ │ │ │ └── repository
│ │ │ │ │ ├── UserRepositoryImp.class
│ │ │ │ │ └── UsersRepository.class
│ │ │ │ ├── rebel-remote.xml
│ │ │ │ ├── rebel.xml
│ │ │ │ └── templates
│ │ │ │ ├── list.html
│ │ │ │ └── login.html
│ │ │ ├── generated-sources
│ │ │ │ └── annotations
│ │ │ ├── generated-test-sources
│ │ │ │ └── test-annotations
│ │ │ └── test-classes
│ │ │ └── com
│ │ │ └── hckj
│ │ │ └── managersystemdemo
│ │ │ └── ManagersystemdemoApplicationTests.class
│ │ ├── managersystemdemo.zip
│ │ ├── springboot设置默认首页
│ │ │ ├── Springboot设置欢迎页面.assets
│ │ │ │ ├── 1.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ └── 4.png
│ │ │ └── Springboot设置欢迎页面.md
│ │ └── 案例讲解流程.png
│ └── 1.1.6 RESTFul的介绍及使用
│ ├── RESTful开发流程.png
│ ├── RESTful开发流程.pos
│ ├── Spring-Data-REST的开发流程.jpg
│ ├── Spring-Data-REST的开发流程.pos
│ ├── restful.zip
│ ├── springboot-rest-demo.zip
│ └── springboot-starter-rest-demo.zip
└── 5t6t网_1.1 spring boot基础.zip
85 directories, 79 files
评论